home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / Aidan's Class Libraries / Source / Headers / CLLine.h < prev    next >
Encoding:
Text File  |  1997-06-14  |  318 b   |  22 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved.
  3.  
  4. #ifndef __LINE_H
  5. #define __LINE_H
  6.  
  7. #include "CLShape.h"
  8.  
  9. class TStyle;
  10.  
  11. class TLine:
  12.     public TShape
  13. {
  14. protected:
  15.     short mX1, mY1, mX2, mY2;
  16.     TStyle *mStyle;
  17. public:
  18.     TLine( TStyle*, short, short, short, short );
  19.     virtual void RenderOn( TDrawSlate* );
  20. };
  21.  
  22. #endif